From fd628de5f232fb49b10f053cb5cb874200b6942a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 9 May 2007 15:32:58 +0000 Subject: [PATCH] * (bug 9854, 3770) Clip overflow text in gallery boxes for visual cleanliness instead of letting it flow outside the box or trigger ugly scroll bars. Nikerabbit missed some skins and relnotes --- RELEASE-NOTES | 2 ++ skins/chick/main.css | 1 + skins/common/common.css | 1 + skins/monobook/handheld.css | 1 + 4 files changed, 5 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 2b111157b0..fd12211802 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -42,6 +42,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN through transwiki, so we can take advantage of cURL goodies if available * Disable custom user javascript in Special:Preferences, to avoid the risk of a compromised script sniffing passwords etc. +* (bug 9854, 3770) Clip overflow text in gallery boxes for visual cleanliness + instead of letting it flow outside the box or trigger ugly scroll bars. == Maintenance script changes since 1.10 == diff --git a/skins/chick/main.css b/skins/chick/main.css index 26d4f92549..93a5f5fdab 100644 --- a/skins/chick/main.css +++ b/skins/chick/main.css @@ -475,6 +475,7 @@ div.gallerybox div.thumb { } div.gallerytext { + overflow: hidden; font-size: 94%; padding: 2px 4px; } diff --git a/skins/common/common.css b/skins/common/common.css index f607552286..967a74e3b2 100644 --- a/skins/common/common.css +++ b/skins/common/common.css @@ -303,6 +303,7 @@ div.gallerybox div.thumb { } div.gallerytext { + overflow: hidden; font-size: 94%; padding: 2px 4px; } diff --git a/skins/monobook/handheld.css b/skins/monobook/handheld.css index 7d14d4b865..d3ef7b6c57 100644 --- a/skins/monobook/handheld.css +++ b/skins/monobook/handheld.css @@ -1032,6 +1032,7 @@ div.gallerybox div.thumb { } div.gallerytext { + overflow: hidden; font-size: 94%; padding: 2px 4px; } -- 2.20.1